ZennoLab Assemblies Documentation
AddRow(IEnumerable<String>) Method
Example 

Type: IEnumerable<string>

The values of the row.

Adds a row from a list of values to the end of the object of IZennoTable interface .
Syntax
void AddRow( 
   IEnumerable<string> values
)

Parameters

values

Type: IEnumerable<string>

The values of the row.

Example
The following code using IZennoTable Interface for adding row. Before call of AddRow method.
// get table by name "MyTable"
IZennoTable table = project.Tables["MyTable"];
 
// add row 
table.AddRow(new [] { "one", "two", "three", "four" });
// get table by name "MyTable"
$table = $project->Tables->get_Item("MyTable");
 
// add row 
$table->AddRow(array("one", "two", "three", "four"));
Requirements

Target Platforms: Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family, Windows Seven

See Also

Reference

IZennoTable Interface
IZennoTable Members
Overload List
AddRow Method
DeleteRow Method
IZennoTable Interface

Send Feedback